home *** CD-ROM | disk | FTP | other *** search
/ Gekikoh Dennoh Club 2 / Gekikoh Dennoh Club Vol. 2 (Japan).7z / Gekikoh Dennoh Club Vol. 2 (Japan) (Track 01).bin / games / mashou / plugin / storm.c < prev    next >
Text File  |  1997-10-07  |  591b  |  34 lines

  1. /*        BG画面をだんだん速くスクロールさせる。
  2.     storm.x
  3.     (画面外の部分の書換ができないので、端の方で使うと、
  4.     変になるので注意。)
  5.                 by SJOM
  6. */
  7.  
  8. #include <stdlib.h>
  9. #include <stdio.h>
  10. #include <sys/iocs.h>
  11.  
  12.  
  13. int
  14. main(void)
  15. {
  16.     int loop=0,speed=1,x=0,y=0;
  17.     int *bgx,*bgy;
  18.     if ((bgx=malloc(2*sizeof(int)))==NULL)
  19.         exit(-1);
  20.     bgy=bgx+1;
  21.     if (_iocs_bgscrlgt(0,bgx,bgy)!=0)
  22.         exit(-1);
  23.     x=*bgx*4;
  24.     y=*bgy;
  25.     for (loop=0;loop<256;loop++) {        /* test */
  26.         speed++;
  27.         x=x+speed;
  28.         _iocs_bgscrlst(0,(x/4) & 511,y);
  29.     };
  30.         _iocs_bgscrlst(0,*bgx,*bgy);
  31.     exit(0);
  32. }
  33.  
  34.